type text/template/parse.elseNode

8 uses

	text/template/parse (current package)
		node.go#L812: type elseNode struct {
		node.go#L819: func (t *Tree) newElse(pos Pos, line int) *elseNode {
		node.go#L820: 	return &elseNode{tr: t, NodeType: nodeElse, Pos: pos, Line: line}
		node.go#L823: func (e *elseNode) Type() NodeType {
		node.go#L827: func (e *elseNode) String() string {
		node.go#L831: func (e *elseNode) writeTo(sb *strings.Builder) {
		node.go#L835: func (e *elseNode) tree() *Tree {
		node.go#L839: func (e *elseNode) Copy() Node {